home *** CD-ROM | disk | FTP | other *** search
- /* Prototypes for routines that app must provide and some constants */
- #include "AppInterface.h"
-
- /* The number of Shell Menus */
- #define kNumShellMenus 3 /* Apple, file, and edit */
-
- /* the About... Alert ID*/
- #define kAboutAlertID 128
-
- /*-------------------------
- Prototypes
- -------------------------*/
-
- /* init.c */
- int initshell(void);
-
- /* events.c */
- int DoEvent(EventRecord *Event);
- int DoMouse(EventRecord *eventptr);
- int DoKey(EventRecord *eventptr);
- int DoOS(EventRecord *eventptr);
- int DoMenus(long mstuff);
- int DoApple(short item);
- int DoFile(short item);
- int DoEdit(short item);
- void BailOut(void);
-
- /* utils.c prototypes are in AppInterface.h */
-